-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LOOKDEVX-0000 - Fix legacy CM nodes affected by MaterialX 1.38.8 #3481
Conversation
There was a change in MaterialX 1.38.8 that heavily modified the CM implementations provided. Fixing this required copying the relevant code from 1.38.7 to MayaUSD so the nodes can continue working. I have backed-up all the implementation code affected in the 1.38.7 folder, with a version specific install so 1.38.7 continues working.
@@ -0,0 +1,11 @@ | |||
#include "libraries/stdlib/genglsl/lib/mx_transform_color.glsl" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All these new files in the 1.37.7 folder are copies of files modified for 1.38.8 before changes.
@@ -1,8 +1,8 @@ | |||
#include "libraries/stdlib/genglsl/lib/mx_transform_color.glsl" | |||
#include "libraries/adsk/maya/genglsl/lib/usd_transform_color.glsl" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes requires copying the old mx_transform_color.glsl to MayaUSD since that file no longer exists in 1.38.8.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
@seando-adsk Ready for merge. Thanks! |
There was a change in MaterialX 1.38.8 that heavily modified the CM implementations provided.
Fixing this required copying the relevant code from 1.38.7 to MayaUSD so the nodes can continue working.
I have backed-up all the implementation code affected in the 1.38.7 folder, with a version specific install so 1.38.7 continues working.